home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970929-19971216 / 000332_news@newsmaster….columbia.edu _Mon Dec 1 10:12:14 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA27733
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 1 Dec 1997 10:12:14 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA22862
  7.     for kermit.misc@watsun; Mon, 1 Dec 1997 10:12:14 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Kermit DOS Performance?
  12. Date: 1 Dec 1997 15:12:13 GMT
  13. Organization: Columbia University
  14. Lines: 46
  15. Message-ID: <65uk4d$9n1$1@apakabar.cc.columbia.edu>
  16. References: <65t342$k91$1@goanna.cs.rmit.edu.au>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8126
  19.  
  20. In article <65t342$k91$1@goanna.cs.rmit.edu.au>,
  21. Ross Irvine <rwi@yallara.cs.rmit.edu.au> wrote:
  22. : I'm trying my best to get kermit for dos (3.15) to transfer files 
  23. : as fast as possible. It's currently about half the speed of z modem.
  24. : I've set the following :
  25. : set block 3                     ;
  26. : set window 4                    ;
  27. :
  28. A larger window size might help, depending on the connection.  Remember,
  29. in the normal case, Zmodem has an infinite window size (which is not
  30. necessary A Good Thing when errors must be handled).
  31.  
  32. : set receive packet-length 9000  ;
  33. : set control prefix all          ; 
  34. : I'm transfering data via an Async Bonded ISDN line (The bonding combinds 
  35. : 2 64K B channels into one. Giving me 128k to play with).
  36. Using what kind of physical interface and driver?
  37.  
  38. : I'm only getting around a 6000 cps rate. I can see that my problem is the 
  39. : set control prefix all line. As I'm sending ZIP's, this is probably 
  40. : making kermit send twice as much data.
  41. : I've tried setting unprefix all and prefixings 0,1 and 129 but I keep 
  42. : getting strange parity errors on the recieving end. Both sides of the 
  43. : xfer are Kermit for DOS 3.15.
  44. MS-DOS Kermit itself does not require 0 to be prefixed, so you get a big
  45. gain immediately by unprefixing it (currently you must prefix 0 when sending
  46. to C-Kermit, but this restriction will be removed in the next release).
  47. 1 and 13 should be prefixed for safety, to prevent misidentification of Kermit
  48. packet start/end, but you can experiment with unprefixing them too.
  49.  
  50. If you get transmission errors when transferring Kermit-to-Kermit and
  51. unprefixing 1 and 13, they are probably occurring outside of Kermit.  The
  52. usual suspects are:
  53.  
  54.  . Lack of transparency to certain characters on the connection.
  55.  . Parity on the connection.
  56.  . Inadequate flow control (on COM port connections).
  57.  . Faulty drivers (when not using SET PORT COMx).
  58.  . Faulty adapters, interrupt conflicts, etc.
  59.  
  60. - Frank